home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / rs0422.zip / ROSEZSW / RZSW < prev    next >
Text File  |  1991-04-22  |  3KB  |  93 lines

  1. AS=D:\COMPILER\HITECH\ZAS.EXE -J -W132
  2. LNK=d:\compiler\HITECH\link.exe -R -Orosezsw.obj -Mrosezsw.map
  3. CC=d:\COMPILER\HITECH\ZC.exe -I..\include\ -S -OF
  4. OPTIM=E:\X25\LEVEL3\hitechrst.exe
  5.  
  6. init.zas: init.c ..\include\data.h ..\include\buffer.h \
  7.         ..\include\timer.h ..\include\ax25l2.h \
  8.         ..\include\ax25.h
  9.     $(CC) init.c
  10.     $(OPTIM) init.as init.zas
  11.     del init.as
  12.  
  13. init.z80: init.zas
  14.     $(AS) init.zas
  15.     del init.z80
  16.     ren init.obj init.z80
  17.  
  18. calsetup.zas: calsetup.c ..\include\data.h ..\include\buffer.h \
  19.         ..\include\timer.h ..\include\ax25.h \
  20.         ..\include\l3struc.h ..\include\x25cause.h
  21.     $(CC) calsetup.c
  22.     $(OPTIM) calsetup.as calsetup.zas
  23.     del calsetup.as
  24.  
  25. calsetup.z80: calsetup.zas
  26.     $(AS) calsetup.zas
  27.     del calsetup.z80
  28.     ren calsetup.obj calsetup.z80
  29.  
  30. paths.zas: paths.c ..\include\data.h ..\include\buffer.h \
  31.         ..\include\ax25.h ..\include\ax25l2.h ..\include\l3calls.h \
  32.         ..\include\l3struc.h ..\include\x25cause.h
  33.     $(CC) paths.c
  34.     $(OPTIM) paths.as paths.zas
  35.     del paths.as
  36.  
  37. paths.z80: paths.zas
  38.     $(AS) paths.zas
  39.     del paths.z80
  40.     ren paths.obj paths.z80
  41.  
  42. upcalls.zas: upcalls.c ..\include\buffer.h ..\include\iface.h ..\include\timer.h \
  43.         ..\include\ax25.h ..\include\ax25l2.h ..\include\l3struc.h \
  44.         ..\include\x25cause.h ..\include\l3calls.h ..\include\tx.h
  45.     $(ZC) $(CC) upcalls.c
  46.     $(OPTIM) upcalls.as upcalls.zas
  47.     del upcalls.as
  48.  
  49. upcalls.z80: upcalls.zas
  50.     $(AS) upcalls.zas
  51.     del upcalls.z80
  52.     ren upcalls.obj upcalls.z80
  53.  
  54. l2conreq.zas: l2conreq.c ..\include\buffer.h ..\include\iface.h ..\include\timer.h \
  55.         ..\include\ax25.h ..\include\ax25l2.h ..\include\data.h
  56.     $(ZC) $(CC) l2conreq.c
  57.     $(OPTIM) l2conreq.as l2conreq.zas
  58.     del l2conreq.as
  59.  
  60. l2conreq.z80: l2conreq.zas
  61.     $(AS) l2conreq.zas
  62.     del l2conreq.z80
  63.     ren l2conreq.obj l2conreq.z80
  64.  
  65. loader.zas: loader.c ..\include\buffer.h ..\include\iface.h ..\include\timer.h \
  66.         ..\include\ax25.h ..\include\ax25l2.h ..\include\data.h
  67.     $(ZC) $(CC) loader.c
  68.     $(OPTIM) loader.as loader.zas
  69.     del loader.as
  70.  
  71. loader.z80: loader.zas
  72.     $(AS) loader.zas
  73.     del loader.z80
  74.     ren loader.obj loader.z80
  75.  
  76. passwd.zas: passwd.c
  77.     $(CC) passwd.c
  78.     $(OPTIM) passwd.as passwd.zas
  79.     del passwd.as
  80.  
  81. passwd.z80: passwd.zas
  82.     $(AS) passwd.zas
  83.     del passwd.z80
  84.     ren passwd.obj passwd.z80
  85.  
  86. rzsw.z80: rzsw.as
  87.     $(AS) -Lrzsw.lst rzsw.as
  88.     del rzsw.z80
  89.     ren rzsw.obj rzsw.z80
  90.  
  91. rosezsw.obj: init.z80 rzsw.z80 calsetup.z80 paths.z80 upcalls.z80 l2conreq.z80 loader.z80 passwd.z80
  92.     $(LNK) init.z80 rzsw.z80 calsetup.z80 paths.z80 upcalls.z80 l2conreq.z80 loader.z80 passwd.z80
  93.